1
/****************************** Module Header ******************************\
2 Module Name: INTERNET_OPTION.cs
3 Project: CSWebBrowserWithProxy
4 Copyright (c) Microsoft Corporation.
6 This enum contains 4 WinINet constants used in method InternetQueryOption and
7 InternetSetOption functions.
8 Visit http://msdn.microsoft.com/en-us/library/aa385328(VS.85).aspx to get the
11 This source is subject to the Microsoft Public License.
12 See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL.
13 All other rights reserved.
15 THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
16 EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
17 WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
18 \***************************************************************************/
20 namespace CSWebBrowserWithProxy
22 public enum INTERNET_OPTION
24 // Sets or retrieves an INTERNET_PER_CONN_OPTION_LIST structure that specifies
25 // a list of options for a particular connection.
26 INTERNET_OPTION_PER_CONNECTION_OPTION
= 75,
28 // Notify the system that the registry settings have been changed so that
29 // it verifies the settings on the next call to InternetConnect.
30 INTERNET_OPTION_SETTINGS_CHANGED
= 39,
32 // Causes the proxy data to be reread from the registry for a handle.
33 INTERNET_OPTION_REFRESH
= 37